footer {
    padding-top: 160px;
    padding-bottom: 50px;
    overflow: hidden;   
    background-image: url("../Assets/Footer/bg-img-xlg.png");
    background-size: cover;
    background-position-y: 95px;
    background-repeat: no-repeat;
}

.social-section {
    display: block;
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover;
    background-repeat: no-repeat;
}

.social-section a {
    text-decoration: none;
}

.social-section-icons,
.social-section-text {
    display: flex;
    justify-content: center;
}

.social-section-text p2 {
    text-transform: capitalize;
    margin-bottom: 40px;
    color: #1d477c;
    font-weight: 300;
}

.social-section-icons i {
    color: white;
    display: flex;
    flex-flow: wrap;
    align-content: center;
    justify-content: center;
    padding: 20px;
    font-size: 30px;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 20px 0 20px;
    border: 2px solid #d3d1d5;
    color: white;
    background-color: #d3d1d5;
    transition: .5s ease;  
}

.social-section i:hover {
    background-color: transparent;
    color: #d3d1d5;
}

footer .row {
    justify-content: center;
}

footer .row .first-col {
    margin-top: 405px;
}

footer .row .last-col {
    margin-top: 405px;
}

footer table {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
}

footer p {
    text-transform: capitalize;
    font-size: 20px;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: black;
    transition: .5s ease;
}

footer a:hover {
    color: #d3d1d5;
}

.footer-logo-div {
    display: flex;
    justify-content: center;
    transform: translateY(-30px);
}

.footer-address-div {
    margin: 145px 0 20px 0;
    padding: 0 20px 50px 20px;
    text-align: center;
    display: block;
    border-right: 1px solid black;
    border-left: 1px solid black;
}

.footer-address-div p {
    margin-bottom: 0;
}

.footer-address-div p1 {
    margin-top: 20px;
}

.footer-address-div a {
    margin-top: 20px;
    text-decoration: underline 1px black;
    text-underline-offset: 10px;
}

footer .col-lg-3 {
    margin-top: -20px;
}

footer i {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 20px;
}

footer i:hover {
    border: 1px solid #d3d1d5;
}


footer img {
    cursor: pointer;
}

@media screen and (max-width: 1511px) {
    footer {
        background-image: url("../Assets/Footer/bg-img-lg.png");
        background-position-y: 0;
    }
}

@media screen and (max-width: 991px) {
    footer {
        background-image: url("../Assets/Footer/bg-img-md.png");
    }

    footer .footer-address-div {
        border-right: none;
        border-left: none;
    }

    footer .row .first-col,
    footer .row .last-col {
        margin-top: 30px;
    }

    footer .row .first-col {
        padding-left:50px;
        padding-right: 50px;
        padding-bottom: 50px;
    }

    footer img {
        min-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .social-section i {
        padding: 10px;
        margin: 0 10px 0 10px;
    }
}

@media screen and (max-width: 568px) {
    footer {
        padding-top: 50px;
    }

    footer img {
        min-width: auto;
        height: 190px;
    }
    
    .social-section-icons i {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
}


